home *** CD-ROM | disk | FTP | other *** search
/ L' Effet Pommier 2 / L'Effet Pommier - Volume 02.iso / Echecs / GNU Chess 3.0 / Gnu Chess Source / update.c < prev    next >
Text File  |  1992-03-10  |  8KB  |  338 lines

  1. /*
  2.   Mac interface for GNU Chess
  3.  
  4.   Revision: 10 Feb 1991
  5.  
  6.   Copyright (C) 1986, 1987, 1988 Free Software Foundation, Inc.
  7.   Copyright (c) 1991  Airy ANDRE
  8.  
  9.     expanded game save, list, and restore features
  10.     optional auto-updating of positional information
  11.  
  12.   This file is part of CHESS.
  13.  
  14.   CHESS is distributed in the hope that it will be useful,
  15.   but WITHOUT ANY WARRANTY.  No author or distributor
  16.   accepts responsibility to anyone for the consequences of using it
  17.   or for whether it serves any particular purpose or works at all,
  18.   unless he says so in writing.  Refer to the CHESS General Public
  19.   License for full details.
  20.  
  21.   Everyone is granted permission to copy, modify and redistribute
  22.   CHESS, but only under the conditions described in the
  23.   CHESS General Public License.   A copy of this license is
  24.   supposed to have been given to you along with CHESS so you
  25.   can know your rights and responsibilities.  It should be in a
  26.   file named COPYING.  Among other things, the copyright notice
  27.   and this notice must be preserved on all copies.
  28.   */
  29.  
  30. #include <stdio.h>
  31. #include "math.h"
  32.  
  33. #include "DragMgr.h"
  34. #include "gnuchess.h"
  35. #include "macintf.h"
  36. #include "rsrc.h"
  37.  
  38. /* Redraw the Window */
  39. pascal void UpdateGraphic(WindowPtr theWindow, int ItemNo)
  40. {
  41.      GrafPtr SavePort;
  42.  
  43.     if (ItemNo==1) {
  44.         GetPort(&SavePort);
  45.         SetPort(WindBoard);
  46.         CopyBits(&OffScreenBits,&WindBoard->portBits,&chessRectOff,&chessRectOff,
  47.                         srcCopy,0L);
  48.         SetPort(SavePort);
  49.     }
  50. }
  51.  
  52.  
  53. /* Redraw the clocks */
  54. pascal void UpdateChronos(WindowPtr theWindow, int ItemNo)
  55. {
  56.  
  57.     GrafPtr SavePort;
  58.     int i,j;
  59.      Rect r;
  60.     char time[9];
  61.  
  62.       short h, m, s;
  63.   
  64.   
  65.     GetPort(&SavePort);
  66.     SetPort(WindThink);
  67.  
  68.     i = (nameRec.right-nameRec.left)/2;
  69.  
  70.     if (ItemNo) {
  71.         SetRect(&r,nameRec.left,nameRec.top,nameRec.left+i,nameRec.bottom);
  72.         FillRect(&nameRec,whitePat);
  73.         SetRect(&r,nameRec.left+i,nameRec.top,nameRec.right,nameRec.bottom);
  74.         FillRect(&r,blackPat);
  75.     }
  76.     
  77.     if (TCflag[white])
  78.     {
  79.       if (towho == white) {
  80.               h = (TimeControl.clock[white] - et) / 3600;
  81.               m = ((TimeControl.clock[white] - et) / 60) % 60;
  82.               s = (TimeControl.clock[white] - et) % 60;
  83.       } else {
  84.               h = TimeControl.clock[white] / 3600;
  85.               m = (TimeControl.clock[white] / 60) % 60;
  86.               s = TimeControl.clock[white] % 60;
  87.       }
  88.     } else
  89.   if (towho == white) {
  90.               h = et / 3600;
  91.               m = (et / 60) % 60;
  92.               s = et % 60;
  93.   } else {
  94.               h = TimeControl.clock[white] / 3600;
  95.               m = (TimeControl.clock[white] / 60) % 60;
  96.               s = TimeControl.clock[white] % 60;
  97.   }
  98.  
  99.   if (h < 0)
  100.     h = 0;
  101.   if (m < 0)
  102.     m = 0;
  103.   if (s < 0)
  104.     s = 0;
  105.  
  106.     time[0] = 8;
  107.     time[1] = '0'+h/10;
  108.     time[2] = '0'+h%10;
  109.     time[3] = ':';
  110.     time[4] = '0'+m/10;
  111.     time[5] = '0'+m%10;
  112.     time[6] = ':';
  113.     time[7] = '0'+s/10;
  114.     time[8] = '0'+s%10;
  115.     TextMode(srcCopy);
  116.     MoveTo(nameRec.left+i-5-StringWidth(time),nameRec.top+15);
  117.     DrawString(time);
  118.     
  119.   if (TCflag[black])
  120.     {
  121.       if (towho == black) {
  122.               h = (TimeControl.clock[black] - et) / 3600;
  123.               m = ((TimeControl.clock[black] - et) / 60) % 60;
  124.               s = (TimeControl.clock[black] - et) % 60;
  125.       } else {
  126.               h = TimeControl.clock[black] / 3600;
  127.               m = (TimeControl.clock[black] / 60) % 60;
  128.               s = TimeControl.clock[black] % 60;
  129.       }
  130.     } else
  131.   if (towho == black) {
  132.            h = et / 3600;
  133.           m = (et / 60) % 60;
  134.           s = et % 60;
  135.   } else {
  136.               h = TimeControl.clock[black] / 3600;
  137.               m = (TimeControl.clock[black] / 60) % 60;
  138.               s = TimeControl.clock[black] % 60;
  139.   }
  140.   
  141.   if (h < 0)
  142.     h = 0;
  143.   if (m < 0)
  144.     m = 0;
  145.   if (s < 0)
  146.     s = 0;
  147.  
  148.     time[0] = 8;
  149.     time[1] = '0'+h/10;
  150.     time[2] = '0'+h%10;
  151.     time[3] = ':';
  152.     time[4] = '0'+m/10;
  153.     time[5] = '0'+m%10;
  154.     time[6] = ':';
  155.     time[7] = '0'+s/10;
  156.     time[8] = '0'+s%10;
  157.     TextMode(notSrcCopy);
  158.     MoveTo(nameRec.right-5-StringWidth(time),nameRec.top+15);
  159.     DrawString(time);
  160.  
  161.      SetPort(SavePort);         
  162. }
  163.  
  164. pascal void UpdateMsg(WindowPtr theWindow, int ItemNo)
  165. {
  166.      GrafPtr SavePort;
  167.      int val;
  168.      int sq;
  169.      Str255 str;
  170.      
  171.      GetPort(&SavePort);
  172.     SetPort(WindThink);
  173.     FrameRect(&MsgFRec);
  174.     
  175.     MoveTo(MsgRec.left+1,MsgRec.top+16);
  176.     TextMode(srcCopy);
  177.     MoveTo(MsgRec.right-5-StringWidth(Msg),MsgRec.top+15);
  178.     FillRect(&MsgRec,whitePat);
  179.     DrawString(Msg);
  180.  
  181.     SetPort(SavePort);
  182. }
  183.  
  184. pascal void UpdateThink(WindowPtr theWindow, int ItemNo)
  185. {
  186.      GrafPtr SavePort;
  187.      int num = ItemNo - 2;
  188.      int i,h,v;
  189.      Str255 *tm = ThinkMove[num];
  190.      
  191.      GetPort(&SavePort);
  192.     SetPort(WindThink);
  193.     FrameRect(&ThinkFRec[num]);
  194.     
  195.     h = ThinkRec[num].left+2;
  196.     v = ThinkRec[num].top+15;
  197.     TextMode(srcCopy);
  198.     for (i = 0; i <= maxThink; i++)
  199.     if (tm[i][0])
  200.     {
  201.         MoveTo(h, v);
  202.         DrawString(tm[i]);
  203.         v += 12;
  204.     } else break;
  205.  
  206.     SetPort(SavePort);
  207. }
  208.  
  209. pascal void UpdateValue(WindowPtr theWindow, int ItemNo)
  210. {
  211.      GrafPtr SavePort;
  212.      Str255 str;
  213.      
  214.      GetPort(&SavePort);
  215.     SetPort(WindThink);
  216.     FrameRect(&ValueFRec);
  217.     if (showvalue) {
  218.         TextMode(srcCopy);
  219.         NumToString(theScore, str);
  220.         FillRect(&ValueRec,whitePat);
  221.         MoveTo(ValueRec.right-5-StringWidth(str),ValueRec.top+15);
  222.         DrawString(str);
  223.     } else FillRect(&ValueRec,whitePat);
  224.     SetPort(WindThink);
  225. }
  226.  
  227. pascal void UpdateCase(WindowPtr theWindow, int ItemNo)
  228. {
  229.      GrafPtr SavePort;
  230.      
  231.     GetPort(&SavePort);
  232.     SetPort(WindBoard);
  233.     if (MouseX)
  234.     {
  235.         TextMode(srcCopy);
  236.         MoveTo(CaseRec.left+5,CaseRec.top+15);
  237.         FillRect(&CaseRec,whitePat);
  238.         DrawChar(" abcdefgh"[MouseX]);
  239.         DrawChar(" 12345678"[MouseY]);
  240.     } else FillRect(&CaseRec,whitePat);
  241.     SetPort(SavePort);
  242. }
  243.  
  244. pascal void UpdateListe(WindowPtr theWindow, int ItemNo)
  245. {
  246.     LUpdate(WindList->visRgn, List);
  247. }
  248.  
  249. void UpdateMenus()
  250. {
  251.     int i;
  252.     int moves, minutes;
  253.     int Item_No;
  254.     
  255.     if (GameCnt >= 0)
  256.         EnableItem(GetMHandle(EditMenu), 1);
  257.     else
  258.         DisableItem(GetMHandle(EditMenu), 1);
  259.     
  260.     if ((computer != player) && hint)
  261.         EnableItem(GetMHandle(OptionsMenu), 9);
  262.     else
  263.         DisableItem(GetMHandle(OptionsMenu), 9);
  264.     
  265.     if (computer == player)
  266.         EnableItem(GetMHandle(OptionsMenu), 10);
  267.     else
  268.         DisableItem(GetMHandle(OptionsMenu), 10);
  269.     
  270.     moves = TCmoves[white];
  271.     minutes = TCminutes[white];
  272.     if ((moves == 60) && (minutes == 5)) Item_No = 1;
  273.     else
  274.     if ((moves == 60) && (minutes == 15)) Item_No = 2;
  275.     else
  276.     if ((moves == 60) && (minutes == 30)) Item_No = 3;
  277.     else
  278.     if ((moves == 40) && (minutes == 30)) Item_No = 4;
  279.     else
  280.     if ((moves == 40) && (minutes == 60)) Item_No = 5;
  281.     else
  282.     if ((moves == 40) && (minutes == 120)) Item_No = 6;
  283.     else
  284.     if ((moves == 40) && (minutes == 240)) Item_No = 7;
  285.     else
  286.     if ((moves == 1) && (minutes == 15)) Item_No = 8;
  287.     else
  288.     if ((moves == 1) && (minutes == 60)) Item_No = 9;
  289.     else
  290.     if ((moves == 1) && (minutes == 600)) Item_No = 10;
  291.     else Item_No = 12;
  292.  
  293.     for (i=1; i<=12; i++)
  294.         CheckItem(GetMHandle(WhiteMenu), i, i==Item_No);
  295.  
  296.     moves = TCmoves[black];
  297.     minutes = TCminutes[black];
  298.     if ((moves == 60) && (minutes == 5)) Item_No = 1;
  299.     else
  300.     if ((moves == 60) && (minutes == 15)) Item_No = 2;
  301.     else
  302.     if ((moves == 60) && (minutes == 30)) Item_No = 3;
  303.     else
  304.     if ((moves == 40) && (minutes == 30)) Item_No = 4;
  305.     else
  306.     if ((moves == 40) && (minutes == 60)) Item_No = 5;
  307.     else
  308.     if ((moves == 40) && (minutes == 120)) Item_No = 6;
  309.     else
  310.     if ((moves == 40) && (minutes == 240)) Item_No = 7;
  311.     else
  312.     if ((moves == 1) && (minutes == 15)) Item_No = 8;
  313.     else
  314.     if ((moves == 1) && (minutes == 60)) Item_No = 9;
  315.     else
  316.     if ((moves == 1) && (minutes == 600)) Item_No = 10;
  317.     else Item_No = 12;
  318.     
  319.     for (i=1; i<=12; i++)
  320.         CheckItem(GetMHandle(BlackMenu), i, i==Item_No);
  321.  
  322.     CheckItem(GetMHandle(PlayerMenu), 1, !bothsides && (opponent == white)
  323.                                          && (computer == black) && !force);
  324.     CheckItem(GetMHandle(PlayerMenu), 2, !bothsides && (opponent == black)
  325.                                          && (computer == white) && !force);
  326.     CheckItem(GetMHandle(PlayerMenu), 3, bothsides && !force);
  327.     CheckItem(GetMHandle(PlayerMenu), 4, !bothsides && force);
  328.     
  329.     CheckItem(GetMHandle(OptionsMenu), 1, easy);
  330.     CheckItem(GetMHandle(OptionsMenu), 2, reverse);
  331.     CheckItem(GetMHandle(OptionsMenu), 3, anim);
  332.     CheckItem(GetMHandle(OptionsMenu), 4, dither!=0);
  333.     CheckItem(GetMHandle(OptionsMenu), 5, post);
  334.     CheckItem(GetMHandle(OptionsMenu), 6, showvalue);
  335.     CheckItem(GetMHandle(OptionsMenu), 7, hashflag);
  336.  
  337. }
  338.